home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / man / cat.1 / fastmail.1 < prev    next >
Text File  |  1995-07-25  |  7KB  |  199 lines

  1.  
  2.  
  3.  
  4.      FFFFAAAASSSSTTTTMMMMAAAAIIIILLLL((((1111LLLL))))UUUUSSSSEEEENNNNEEEETTTT CCCCoooommmmmmmmuuuunnnniiiittttyyyy TTTTrrrruuuusssstttt ((((EEEEllllmmmm VVVVeeeerrrrssssiiiioooonnnn 2222....4444)))) FFFFAAAASSSSTTTTMMMMAAAAIIIILLLL((((1111LLLL))))
  5.  
  6.  
  7.  
  8.      NNNNAAAAMMMMEEEE
  9.           fastmail - quick batch mail interface to a single address
  10.  
  11.      SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.           ffffaaaassssttttmmmmaaaaiiiillll [-b bcc-list] [-c cc-list] [-C comments] [-d] [-f
  13.           fromname] [-i msg-id] [-r replyto] [-R references] [-s
  14.           subject] filename|- address-list
  15.  
  16.      DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  17.           _F_a_s_t_m_a_i_l is a low-level interface to the mail system that
  18.           allows batch processing of mail.  It's intended for mailing
  19.           to very large groups of people in a staggered fashion.
  20.  
  21.           The starting options are;
  22.  
  23.           ----bbbb bbbbcccccccc----lllliiiisssstttt
  24.                     This allows a list of people to receive blind-
  25.                     carbon copies, or BCCs, of the message.  This list
  26.                     should be full email addresses.
  27.  
  28.           ----cccc cccccccc----lllliiiisssstttt
  29.                     This allows a list of people to receive carbon
  30.                     copies, or CCs, of the message.  This list should
  31.                     be full email addresses.
  32.  
  33.           ----CCCC ccccoooommmmmmmmeeeennnnttttssss
  34.                     This allows a Comments: line to be added to the
  35.                     RFC822 header with any text you desire.
  36.  
  37.           ----dddd        Debug.  This is helpful for strange, unfriendly
  38.                     errors from the program (etc).
  39.  
  40.           ----ffff ffffrrrroooommmm   This overrides the users name in the From: line,
  41.                     so that if the user was x@y, and their name was
  42.                     MrX then the default From: line would be "From:
  43.                     x@y (MrX)".  Using "-f Joe" when invoking this,
  44.                     though, would change it to "From: x@y (Joe)"
  45.  
  46.           ----iiii mmmmssssgggg----iiiidddd This allows a message-id to which this message
  47.                     refers.
  48.  
  49.           ----rrrr rrrreeeeppppllllyyyyttttoooo
  50.                     Occasionally, you might send mail but want the
  51.                     replies to go to a different address (very common
  52.                     with mailing lists). There is a header for this
  53.                     purpose called "Reply-To:" which can be utilized
  54.                     by using this starting option.  For example, we
  55.                     could send mail with a reply-to to list-request by
  56.                     using "-r list-request".  The header generated
  57.                     would then be of the form "Reply-To: list-
  58.                     request".
  59.  
  60.  
  61.  
  62.  
  63.      Page 1                                          (printed 7/15/95)
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.      FFFFAAAASSSSTTTTMMMMAAAAIIIILLLL((((1111LLLL))))UUUUSSSSEEEENNNNEEEETTTT CCCCoooommmmmmmmuuuunnnniiiittttyyyy TTTTrrrruuuusssstttt ((((EEEEllllmmmm VVVVeeeerrrrssssiiiioooonnnn 2222....4444)))) FFFFAAAASSSSTTTTMMMMAAAAIIIILLLL((((1111LLLL))))
  71.  
  72.  
  73.  
  74.           ----RRRR rrrreeeeffffeeeerrrreeeennnncccceeeessss
  75.                     This allows descriptive/reference text for this
  76.                     message.
  77.  
  78.           ----ssss ssssuuuubbbbjjjjeeeecccctttt
  79.                     The subject of the message is specified by using
  80.                     this starting option.
  81.  
  82.           Either the name of the file containing the message, or a -
  83.           to indicate usage of standard-in is required.
  84.  
  85.      EEEEXXXXAAAAMMMMPPPPLLLLEEEE
  86.           Let's say we're user "big" on machine "big-vax" and we have
  87.           a shell script called 'batch-mail' that contains the
  88.           following lines:
  89.  
  90.              #
  91.              # Batch Mail - batch mailing of a file to a LOT of users
  92.              #
  93.              # Usage: batch-mail "from" "subject" filename
  94.  
  95.              sender_copy = $LOGIN
  96.              replyto = "The-Mr-Big-list"
  97.  
  98.              fastmail -b $sender_copy -r $replyto -f "$1" -s "$2" $3 person1
  99.              sleep 10
  100.              fastmail -r $replyto -f "$1" -s "$2" $3 person2
  101.              sleep 10
  102.              fastmail -r $replyto -f "$1" -s "$2" $3 person3
  103.              sleep 10
  104.              fastmail -r $replyto -f "$1" -s "$2" $3 person4
  105.  
  106.              < etc >
  107.  
  108.           with the invocation:
  109.  
  110.              batch-mail "Mr. Big" "Warning to all" warning.text
  111.  
  112.           would mail a copy of the 'warning.text' file to person1,
  113.           person2, person3, etc.  "$LOGIN" will also receive a copy of
  114.           the first message in the mail, _s_i_l_e_n_t_l_y.  Each resultant
  115.           message will include the headers:
  116.  
  117.               From: big-vax!big (Mr. Big)
  118.               Subject: Warning to all
  119.               Reply-To: The-Mr-Big-list
  120.  
  121.           This program should turn out to be considerably faster than
  122.           the alternative methods of accomplishing this task.
  123.  
  124.      FFFFIIIILLLLEEEESSSS
  125.           /usr/lib/sendmail       sendmail transport if available
  126.  
  127.  
  128.  
  129.      Page 2                                          (printed 7/15/95)
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.      FFFFAAAASSSSTTTTMMMMAAAAIIIILLLL((((1111LLLL))))UUUUSSSSEEEENNNNEEEETTTT CCCCoooommmmmmmmuuuunnnniiiittttyyyy TTTTrrrruuuusssstttt ((((EEEEllllmmmm VVVVeeeerrrrssssiiiioooonnnn 2222....4444)))) FFFFAAAASSSSTTTTMMMMAAAAIIIILLLL((((1111LLLL))))
  137.  
  138.  
  139.  
  140.           /bin/rmail              transport if no sendmail
  141.           /tmp/fastmail.$$        temporary file
  142.  
  143.      AAAAUUUUTTTTHHHHOOOORRRR
  144.           Elm Development Group
  145.  
  146.      SSSSEEEEEEEE AAAALLLLSSSSOOOO
  147.           sendmail(1), rmail(1), elm(1L)
  148.  
  149.      BBBBUUUUGGGG RRRREEEEPPPPOOOORRRRTTTTSSSS TTTTOOOO
  150.           Syd Weinstein  elm@DSI.COM    (dsinc!elm)
  151.  
  152.      CCCCOOOOPPPPYYYYRRRRIIIIGGGGHHHHTTTTSSSS
  153.           Copyright 1988-1992 by The USENET Community Trust
  154.           Derived from Elm 2.0,  Copyright 1986, 1987 by Dave Taylor
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.      Page 3                                          (printed 7/15/95)
  196.  
  197.  
  198.  
  199.